From 2c35a3f9b29099dd1e812432a0479cec255b1e1f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Dec 2007 19:36:16 +0000 Subject: [PATCH] Document some initial values svn path=/trunk/; revision=19281 --- ChangeLog | 5 +++++ gtk/gtkcalendar.c | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/ChangeLog b/ChangeLog index fad32b17af..f85f980d1e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-28 Matthias Clasen + + * gtk/gtkcalendar.c: Document the initial values of year/month/day + properties. + 2007-12-28 Christian Persch * gtk/gtkfontsel.c: (gtk_font_selection_get_property): Plug diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index 45cc880880..8735bd7575 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -432,6 +432,12 @@ gtk_calendar_class_init (GtkCalendarClass *class) widget_class->drag_drop = gtk_calendar_drag_drop; widget_class->drag_data_received = gtk_calendar_drag_data_received; + /** + * GtkCalendar:year: + * + * The selected year. + * This property gets initially set to the current year. + */ g_object_class_install_property (gobject_class, PROP_YEAR, g_param_spec_int ("year", @@ -439,6 +445,13 @@ gtk_calendar_class_init (GtkCalendarClass *class) P_("The selected year"), 0, G_MAXINT, 0, GTK_PARAM_READWRITE)); + + /** + * GtkCalendar:month: + * + * The selected month (as a number between 0 and 11). + * This property gets initially set to the current month. + */ g_object_class_install_property (gobject_class, PROP_MONTH, g_param_spec_int ("month", @@ -446,6 +459,14 @@ gtk_calendar_class_init (GtkCalendarClass *class) P_("The selected month (as a number between 0 and 11)"), 0, 11, 0, GTK_PARAM_READWRITE)); + + /** + * GtkCalendar:day: + * + * The selected day (as a number between 1 and 31, or 0 + * to unselect the currently selected day). + * This property gets initially set to the current day. + */ g_object_class_install_property (gobject_class, PROP_DAY, g_param_spec_int ("day", -- 2.30.2